home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / Stepfar.dxr / 00139_Enter numbers.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  164 b   |  7 lines

  1. on keyUp
  2.   set vNumList to [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
  3.   if getPos(vNumList, the key) = 0 then
  4.     alert("Please enter a number between 1 and 10.")
  5.   end if
  6. end
  7.